/*!**************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./src/app/[locale]/globals.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;

}

body {
  max-width: 1600px;
  margin: 0 auto;
}

.hr {
  width: 70%;
  margin-bottom: 20px;
  border-width: 2px;
  border-style: solid;
  background: linear-gradient(white, white) padding-box,
            radial-gradient(green, #EEEEEE) border-box;
  border-radius: 50em;
  border: 2px solid transparent;
}

a {
  color: darkgreen;
}

/*Navbar Style*/

.navbar {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: lighter;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 50%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar_logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar_menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar_item {
  height: 80px;
}

.navbar_links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  color: black;
  position: relative;
}

.navbar_links:hover {
  color: #B4CFAC;
  transition: all 0.3s ease;
}

.navbar_links::after {
  content: '';
  /*height: 2px;*/
  width: 90%;
  border-width: 1px;
  border-style: solid;
  background: linear-gradient(white, white) padding-box,
  radial-gradient(green, #EEEEEE) border-box;
  border: 1px solid transparent;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  transition: all;
  pointer-events: none;
}

.navbar_links:hover::after {
  opacity: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #EEEEEE;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Footer */

.footerContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: darkgreen;
  background: linear-gradient(white ,#A9C8A0);
}
.footerText {
  padding: 20px;
}
.footerSocial {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
}
.social {
  list-style: none;
  display: flex;
  margin: 1rem 0 3rem 0;
  align-items: center;
  justify-content: center;
}

.social li {
  margin: 0 10px;
}

.social img {
  width: 30px;
  height: auto;
}

.badge {
  display: flex;
  align-items:center;
  
}

.footerBottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit';
  font-size: 20px;
  width: 100%;
  background: darkslategrey;
  color: white;
  height: 40px;
}

.navbar_itemhr {
  display: none;
}

.languageSwitch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px;
  text-decoration: none;
  text-transform: capitalize;
  width: 50px;
  
}

.languageSwitch:hover {
  background-color: darkgreen;
  color: white;
  border-width: 1px solid;
  border-color: darkgreen;
  border-radius: 8px;
  border-style: solid;
}

/*  R E S P O N S I V E  */ 

@media screen and (max-width: 960px) {
  .navbar {
      display: block;
  }
  .navbar_container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
  }
  .navbar_menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0px;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 1;
      transition: all 0.5s ease;
      height: 20vh;
      z-index: -1;
      
  }
  .navbar_menu.active {
      background:#EEEEEE;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 40vh;
      font-size: 1rem;
  }
  #navbar_logo {
      padding-left: 25px;

  }
  .navbar_toggle .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: green;
  }
  .navbar_item {
      width: 100%;
      height: 10px;
  }
  .navbar_links {
      text-align: center;
      padding: 1rem;
      width: 100%;
      display: table;
      height: 100%;
  }

  .navbar_links:hover {
    color: #B4CFAC;
    transition: all 0.3s ease;
  }
  
  /* NavBar underline */
  .navbar_links::after {
    display: none;
  }

 .dropdown-content {
  position: fixed;
  background-color: #EEEEEE;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}

  .dropdown:hover .dropdown-content {
    display: flex;
    text-align: center;
  }
  
  #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
      
  }
  .navbar_toggle .bar {
      display: block;
      cursor: pointer;
  }
  #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .ciljeviContainerColumn > * {
    width: calc(100% / 3);
  }

  .footerContainer {
    display: flex;
    flex-direction: column;
  }

  .badge {
    margin-bottom: 20px;
  }

  .navbar_itemhr {
    display: none;
  }

  .languageSwitch {
    display: inline;
    margin: 0px 10px;
  }

}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[7].use[3]!./src/components/Navbar.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
  /* navbar */
  .Navbar_navbar__fk_p7 {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: lighter;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
  }
  
  .Navbar_navbar_container__GQvw8 {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 50%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  #Navbar_navbar_logo__rQJBh {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .Navbar_navbar_item__UdRe9 {
    height: 80px;
  }
    
  /* ul  */
  .Navbar_navMenu__45Z1_ {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  .Navbar_navbar_links__Cc30R {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    color: black;
    position: relative;
  }

  .Navbar_navbar_links__Cc30R:hover {
    color: #B4CFAC;
    transition: all 0.3s ease;
  }
  
  .Navbar_navbar_links__Cc30R::after {
    content: '';
    /*height: 2px;*/
    width: 90%;
    border-width: 1px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box,
                radial-gradient(green, #EEEEEE) border-box;
    border: 1px solid transparent;
    position: absolute;
    bottom: 20px;
    opacity: 0;
    transition: all;
    pointer-events: none;
  }
  
  .Navbar_navbar_links__Cc30R:hover::after {
    opacity: 1;
  }
  
  .Navbar_dropdown-content__l_zQJ {
    display: none;
    position: absolute;
    background-color: #EEEEEE;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .Navbar_dropdown-content__l_zQJ a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .Navbar_dropdown-content__l_zQJ a:hover {
    background-color: #ddd;
  }
  
  .Navbar_dropdown__ztbRD:hover .Navbar_dropdown-content__l_zQJ {
    display: block;
  }

  /* media queries */
  
  @media screen and (max-width: 960px){
    
    .Navbar_navbar__fk_p7 {
      display: block;
  }
  .Navbar_navbar_container__GQvw8 {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
  }
  .Navbar_navMenu__45Z1_ {
      display: grid;
      grid-template-columns: auto;
      margin: 0px;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 1;
      transition: all 0.5s ease;
      height: 20vh;
      z-index: -1;
      
  }
  .Navbar_navMenu__45Z1_.Navbar_active__ZTgb8 {
      background:#EEEEEE;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 40vh;
      font-size: 1rem;
  }
  #Navbar_navbar_logo__rQJBh {
      padding-left: 25px;

  }
  .Navbar_navbar_toggle__7Z_OY .Navbar_bar__bpuiO {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: green;
  }
  .Navbar_navbar_item__UdRe9 {
      width: 100%;
      height: 10px;
  }
  .Navbar_navbar_links__Cc30R {
      text-align: center;
      padding: 1rem;
      width: 100%;
      display: table;
      height: 100%;
  }

  .Navbar_navbar_links__Cc30R:hover {
    color: #B4CFAC;
    transition: all 0.3s ease;
  }
  
  /* NavBar underline */
  .Navbar_navbar_links__Cc30R::after {
    display: none;
  }

 .Navbar_dropdown-content__l_zQJ {
  position: fixed;
  background-color: #EEEEEE;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}

  .Navbar_dropdown__ztbRD:hover .Navbar_dropdown-content__l_zQJ {
    display: flex;
    text-align: center;
  }
  
  #Navbar_mobile-menu__p1NDX {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
      
  }
  .Navbar_navbar_toggle__7Z_OY .Navbar_bar__bpuiO {
      display: block;
      cursor: pointer;
  }
  }


  


